home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-05-03 | 926 b | 41 lines | [TEXT/MPS ] |
- ;------------------------------------------------------------------------------
- ;
- ; FILENAME
- ; OldApp.a
- ;
- ; DESCRIPTION
- ; Contains the jump table for the old-application compatibility
- ; messages we override.
- ;
- ; COPYRIGHT
- ; Copyright © 1995 Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Modification history
- ; 05/03/95 - Dave Hersey - Version 1.0.1 to fix some minor bugs in
- ; CustomBufferingAndIO.c.
- ;
- ; 01/14/95 - Dave Hersey - Created from the shell of a hollowed-out
- ; ImageWriter driver.
- ;
- ;--------------------------------------------------------------------------------
-
- CASE OBJ
- STRING ASIS
-
- SD_JumpTable PROC EXPORT
- dc.l 0
-
- ; Overrides for the compatibility messages we override
-
- IMPORT SD_ConvertPrintRecordTo
- JMP SD_ConvertPrintRecordTo
-
- IMPORT SD_ConvertPrintRecordFrom
- JMP SD_ConvertPrintRecordFrom
-
- IMPORT SD_PrValidate
- JMP SD_PrValidate
-
- END
-